home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 November / Macworld (1999-11).dmg / Shareware World / Comms & Internet / DXF to VRML97 1.0.1 / src / Main.c < prev    next >
C/C++ Source or Header  |  1997-01-18  |  319b  |  19 lines

  1. #include <stdio.h>
  2. #include "Main.h"    /* REQUIRED for UNIX file conversion! */
  3.  
  4. /*
  5. ** NOTE:
  6. ** DropUNIX.Lib is not included with the project,
  7. ** you must build it before this will link.
  8. */
  9.  
  10. int main(int argc, char ** argv) {    
  11.  
  12.     int i;
  13.     
  14.     for (i = 0; i < argc; i++) {
  15.         printf("%02d\t%s\n", i, argv[i]);
  16.     }
  17.     
  18.     return 0;
  19. }